home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / storage / page / page.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  342 b   |  20 lines

  1. /*
  2.  * page.c --
  3.  *    POSTGRES buffer page abstraction code.
  4.  *
  5.  * related to internal_page.h, not internal.h
  6.  */
  7.  
  8. #include "tmp/c.h"
  9.  
  10. #include "storage/page.h"
  11.  
  12. RcsId("$Header: /private/postgres/src/storage/page/RCS/page.c,v 1.5 1990/09/25 16:46:34 kemnitz Exp $");
  13.  
  14. bool
  15. PageIsValid(page)
  16.     Page    page;
  17. {
  18.     return ((bool)PointerIsValid(page));
  19. }
  20.